Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
interface System.​IObservable<​T>
Assembly: System.Runtime
Defines a provider for push-based notification.
Methods
Subscribe​(IObserver<​T> observer)
Notifies the provider that an observer is to receive notifications.
Returns A reference to an interface that allows observers to stop receiving notifications before the provider has finished sending them.
observer
The object that is to receive notifications.